home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993, 1994 Marc Parmet.
- * This file is part of the Macintosh port of GNU Emacs.
- *
- * GNU Emacs is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
- #include "stdio.h"
-
- int
- main(int argc,char **argv)
- {
- int k;
-
- for (k = 1; k<argc; ++k) {
- if (k > 1) printf(" ");
- printf("%s",argv[k]);
- }
-
- printf("\n");
- return 0;
- }
-